Function: hide(domElementOrCSSSelector, stringEffectName, objectConfig, functionCompleteCallback) Description: Dynamically removes the specified element using a customizable animation effect. Returns: domElement, or $A object if chained. Requires module: "Animate" Note: The hide() function utilizes Velocity to render animation effects. To view available transition effects, view the help doc at: Help/VelocityUI-Effects-Index.txt. Example: $A.import("Animate", { defer: true }, function() { $A.hide(domElement); $A.hide(domElement, "transition.fadeOut"); $A.hide(".content-panel", "transition.swoopOut", function() { // Do something after removal completes. }); $A.hide([domElement1, domElement2], "transition.slideUpOut", { delay: 350, duration: 750 }); });